home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / programming / other / gtlayout / source / gtlayout_includes.h < prev    next >
C/C++ Source or Header  |  1999-04-19  |  1KB  |  45 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1998 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. */
  7.  
  8. #ifndef _GTLAYOUT_INCLUDES_H
  9. #define _GTLAYOUT_INCLUDES_H 1
  10.  
  11. /*****************************************************************************/
  12.  
  13.     // We don't want the old declarations
  14.  
  15. #define INTUI_V36_NAMES_ONLY
  16.  
  17. #include <intuition/intuition.h>
  18. #include <intuition/gadgetclass.h>
  19. #include <intuition/imageclass.h>
  20.  
  21. #include <libraries/gadtools.h>
  22.  
  23. /*****************************************************************************/
  24.  
  25. #define USE_BUILTIN_MATH
  26. #include <string.h>
  27.  
  28. /*****************************************************************************/
  29.  
  30. #include <clib/intuition_protos.h>
  31. #include <clib/graphics_protos.h>
  32. #include <clib/gadtools_protos.h>
  33. #include <clib/utility_protos.h>
  34. #include <clib/exec_protos.h>
  35.  
  36. #include <pragmas/intuition_pragmas.h>
  37. #include <pragmas/graphics_pragmas.h>
  38. #include <pragmas/gadtools_pragmas.h>
  39. #include <pragmas/utility_pragmas.h>
  40. #include <pragmas/exec_sysbase_pragmas.h>
  41.  
  42. /*****************************************************************************/
  43.  
  44. #endif    // _GTLAYOUT_INCLUDES_H
  45.